home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
007
/
datescrn.arc
/
CSR_LFT.C
< prev
next >
Wrap
Text File
|
1985-12-12
|
1KB
|
25 lines
/****************************************************************************/
/* */
/* This function was written by Jim Niederriter for the Lattice `C' Compiler*/
/* on the IBM Personal Computer or compatible, running DOS 2.0. */
/* */
/* It requires that the system be booted with a CONFIG.SYS file on the boot */
/* disk containing the record: DEVICE=ANSI.SYS */
/* */
/* In addition, the ANSI.SYS file from the DOS 2.0 disk should also be on */
/* the boot disk. */
/* */
/* See Chapter 13 of the DOS 2.0 Manual for further explanation. */
/* */
/****************************************************************************/
/* csr_lft() */
/* this function moves the cursor to the left from its current */
/* position by the number of columns specified */
int csr_lft(col)
int col;
{
cprintf("\x1B[%dD", col);
}